diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx b/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx index e98d391b..92879fe9 100644 --- a/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx +++ b/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx @@ -9,10 +9,14 @@ import { BidProjectsTable } from "@/lib/bidding-projects/table/projects-table" import type { Filter } from "@/types/table" interface IndexPageProps { + params: Promise<{ lng: string }> searchParams: Promise<SearchParams> } export default async function IndexPage(props: IndexPageProps) { + const params = await props.params + const { lng } = params + const searchParams = await props.searchParams const search = searchParamsBidProjectsCache.parse(searchParams) |
